home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Disc to the Future 2
/
Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin
/
MAC
/
MPW_TOOL
/
TOOLS
/
TOOLS_WI
/
GAWK
/
GAWK-2
/
MISSING
/
GCVT.C
< prev
next >
Wrap
Text File
|
1990-07-29
|
129b
|
10 lines
char *
gcvt(value, digits, buff)
double value;
int digits;
char *buff;
{
sprintf(buff, "%*g", digits, value);
return (buff);
}